home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cocktail / estra.lha / estra / src / ErrorTab < prev    next >
Text File  |  1992-08-18  |  4KB  |  159 lines

  1. % $Id: ErrorTab,v 2.1 1991/03/08 18:51:32 grosch rel $
  2. %
  3. %%%    Error Class Text
  4. %
  5. 1    fatal error                 eFatal
  6. 2    restriction                 eRestriction
  7. 3    error                       eError
  8. 4    warning                     eWarning
  9. 5    repair                      eRepair
  10. 6    note                        eNote
  11. 7    information                 eInformation
  12. %
  13. $
  14. %%%    Error Code Text -------------------------------------------------
  15. %
  16. %%%    Parser
  17. %
  18. 1    syntax error                eSyntaxError
  19. 2    expected $                eExpectedSymbols
  20. 3    restart    point                eRestartPoint
  21. 4    inserted $                eSymbolInserted
  22. 5    parse table mismatch            eWrongParseTable
  23. 6    cannot open parse table            eOpenParseTable
  24. 7    cannot read parse table            eReadParseTable
  25. %
  26. %
  27. %%%    interne Fehler
  28. %    --------------
  29. %
  30. 11    internal error $            eInternal
  31. %
  32. %
  33. %%%    Errors
  34. %
  35. 12    wrong error class             eWrongClass
  36. 13    wrong error code            eWrongCode
  37. %
  38. %
  39. %%%    ArgCheck
  40. %    --------
  41. %
  42. 14    option $ is unknown            eNoOption
  43. 15    too many arguments            eTooManyArgs
  44. %
  45. %%%    Scanner (estral.rex)
  46. %    --------------------
  47. %
  48. 21    string exceeds line            eEolString
  49. 22    code does not end            eEofCode
  50. 23    string exceeds line            eEofString
  51. 24    comment not closed            eEofComment
  52. 25    illegal character $            eIllegalChar
  53. 26    prefix yy is reserved for internal use    eDoNotUseYY
  54. %
  55. %
  56. %%%    Semantics
  57. %    ---------
  58. %
  59. 31    $ already declared            eAlreadyDeclraed
  60. 32    $ is not declared            eNotDeclared
  61. 33    $ does not denote a class        eNoClass
  62. 34    $ does not denote a node        eNoNode
  63. 35    coding $ already used            eCodeUsed
  64. 36    coding $ unexpected            eCodeUnexpected
  65. 37    node name $ is unexpected        eNodeNameUnexpected
  66. 39    main class of $ is not clear        eNoMainClass
  67. 40    main class relation of $ is cyclic    eCyclicClass
  68. 42    $ has too few sons            eTooFewSons
  69. 43    $ has too many sons            eTooManySons
  70. 44    subclass of $ expected            eNoSubClass
  71. 45    ( expected                eLParExpected
  72. 46    identifier or string expected        eIdOrStrExpected
  73. 47    do not call $ in the condition        eDoNotCallCond
  74. 48    do not call $ in the cost part        eDoNotCallCost
  75. 49    is not a selector            eNoSelector
  76. 50    additional specification for $ extents the language    eExtended
  77. 51    $ is unreachable            eUnReachable
  78. 52    $ is not derivable            eUnDerivable
  79. 53    there is no function to define $    eNoFunction
  80. 54    pattern is not in the domain of $     eNotInDomain
  81. 55    identifier expected            eIdentExpected
  82. 56    illegal pattern                eIllegalPattern
  83. 57    $ is already declared in this class    eAlreadyInClass
  84. 58    $ is not in the domain of the function    eNotInFDomain
  85. %
  86. %%%    Complete
  87. %    ------
  88. 61    no unconditional pattern matching $    eNoPattern
  89. 62    no pattern at all matching $        eNoPatAtAll
  90. %%%%%
  91. %%%    System Errors
  92. %    -------------
  93. %
  94. 101    not super-user 
  95. 102    no such file or directory 
  96. 103    no such process 
  97. 104    interrupted system call 
  98. 105    I/O error 
  99. 106    no such device or address 
  100. 107    arg list too long 
  101. 108    exec format error 
  102. 109    bad file number 
  103. 110    no children 
  104. 111    no more processes 
  105. 112    not enough core 
  106. 113    permission denied 
  107. 114    bad address 
  108. 115    block device required 
  109. 116    mount device busy 
  110. 117    file exists 
  111. 118    cross-device link 
  112. 119    no such device 
  113. 120    not a directory 
  114. 121    is a directory 
  115. 122    invalid argument 
  116. 123    file table overflow 
  117. 124    too many open files 
  118. 125    not a typewriter 
  119. 126    text file busy 
  120. 127    file too large 
  121. 128    no space left on device 
  122. 129    illegal seek 
  123. 130    read only file system 
  124. 131    too many links 
  125. 132    broken pipe 
  126. 133    math arg out of domain of func 
  127. 134    math result not representable 
  128. 135    no message of desired type 
  129. 136    identifier removed 
  130. 137    channel number out of range 
  131. 138    level 2 not synchronized 
  132. 139    level 3 halted 
  133. 140    level 3 reset 
  134. 141    link number out of range 
  135. 142    protocol driver not attached 
  136. 143    no CSI structure available 
  137. 144    level 2 halted 
  138. 145    out of swap space 
  139. 146    path continues onto another machine 
  140. 147    unison request for a retry 
  141. 148    record locking deadlock 
  142. 149    could not resolve IP addr, host down 
  143. 150    no available gateway in route table 
  144. 151    symbolic links form endless loop 
  145. %
  146. $
  147. %%%    Error Count Text ------------------------------------------------
  148. %
  149. 1    fatal error(s)
  150. 2    restriction(s)
  151. 3    error(s)
  152. 4    warning(s)
  153. 5    repair(s)
  154. 6    note(s)
  155. 7    information(s)
  156. %
  157. $
  158. %%%    -----------------------------------------------------------------
  159.